home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
ARGONET
/
PD
/
PROGRAMMING
/
LCLINT-D.SPK
/
lclint
/
guide
/
stack.c
< prev
next >
Wrap
Text File
|
1996-08-26
|
137b
|
15 lines
int *glob;
/*@dependent@*/
int *f (int **x)
{
int sa[2] = { 0, 1 };
int loc = 3;
glob = &loc;
*x = &sa[0];
return &loc;
}